Some Example Title¶

A link

A Table¶

X Y
1 1.2
2 5

A Dynamic JS-based Graph¶

In [8]:
# generate 100 random numbers for x and y
x = np.random.randn(1000)
y = np.random.randn(1000)
In [9]:
px.scatter(
    x=x,
    y=y,
    title="Random Scatter Plot",
    labels={"x": "x", "y": "y"},
    width=800,
    height=600
)

An Image¶

In [10]:
img = Image.open('../images/4158627220_A_bowling_ball_rolling_down_a_hill.png')
fig = plt.imshow(img)
plt.axis('off')
fig.axes.get_xaxis().set_visible(False)
fig.axes.get_yaxis().set_visible(False)
In [ ]: